home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Modules / BackSpaceModules / Source / Snakes / SnakesView.h < prev    next >
Text File  |  1992-10-20  |  408b  |  28 lines

  1. //
  2. // Snakes
  3. //
  4. // Module for BackSpace.app
  5. // 20 Aug 1992
  6. // Matt Pharr- pharr@cs.yale.edu
  7. //
  8.  
  9. #import <appkit/appkit.h>
  10. #import "Thinker.h"
  11.  
  12. @interface SnakesView:View
  13. {
  14.     int nSnakes;
  15.         int aliveSnakes;
  16.     int nSteps;
  17.     id nSnakesSlider;
  18.     id inspectorPanel;
  19. }
  20.  
  21. -oneStep;
  22. -initFrame:(const NXRect *)frameRect;
  23. -drawSelf:(const NXRect *)rects :(int)rectCount;
  24. -inspector:sender;
  25. -setNSnakes:sender;
  26.  
  27. @end
  28.